home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / Frame.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.2 KB  |  55 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2
  7. */ 
  8. /*   $RCSfile: Frame.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:40:23 $ */
  9. /*
  10. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  11. #ifndef _XmFrame_h
  12. #define _XmFrame_h
  13.  
  14. #include <Xm/Xm.h>
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. #ifndef XmIsFrame
  21. #define XmIsFrame(w) XtIsSubclass(w, xmFrameWidgetClass)
  22. #endif /* XmIsFrame */
  23.  
  24. /* Class record constants */
  25.  
  26. externalref WidgetClass xmFrameWidgetClass;
  27.  
  28. typedef struct _XmFrameClassRec * XmFrameWidgetClass;
  29. typedef struct _XmFrameRec      * XmFrameWidget;
  30.  
  31.  
  32. /********    Public Function Declarations    ********/
  33. #ifdef _NO_PROTO
  34.  
  35. extern Widget XmCreateFrame() ;
  36.  
  37. #else
  38.  
  39. extern Widget XmCreateFrame( 
  40.                         Widget parent,
  41.                         char *name,
  42.                         ArgList arglist,
  43.                         Cardinal argcount) ;
  44.  
  45. #endif /* _NO_PROTO */
  46. /********    End Public Function Declarations    ********/
  47.  
  48.  
  49. #ifdef __cplusplus
  50. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  51. #endif
  52.  
  53. #endif /* _XmFrame_h */
  54. /* DON'T ADD ANYTHING AFTER THIS #endif */
  55.